home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 51327 / 51327.xpi / chrome / content / ff-overlay.js next >
Text File  |  2009-12-03  |  311b  |  19 lines

  1. if(!wdtb) var wdtb={};
  2. if(!wdtb.wdtb_open) wdtb.wdtb_open={};
  3.  
  4.  
  5. wdtb = {
  6.  
  7.     wdtb_open: function(event, url) { 
  8.     
  9.     if (event.button == 0) {
  10.         loadURI (url);
  11.         } 
  12.     
  13.     else {
  14.         gBrowser. selectedTab = gBrowser. addTab (url, null, null);
  15.         document.getElementById('wdtbmenu').hidePopup();
  16.         }
  17.     }
  18.     
  19. }